home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia1.dir / 00530_Script_EaglerFlee < prev    next >
Text File  |  1995-05-21  |  771b  |  39 lines

  1. on mouseDown
  2.   global DeadOrNot
  3.   put the movietime of sprite 48 into DeadOrNot
  4.   if DeadOrNot >= 2750 then 
  5.     exit
  6.   end if
  7.   put "Flee" into f
  8.   put "FleeHL" into fHL
  9.   hiliter 8, f, fHL
  10.   puppetsound "flee.aif"
  11.   updatestage
  12. end
  13.  
  14.  
  15.  
  16. on mouseUp
  17.   global gTheDay, movieName, DeadOrNot, snap1, snap2, theMovieName, gTheDay
  18.   if DeadOrNot >= 2750 then 
  19.     exit
  20.   end if
  21.   set the castNum of sprite 8 = cast "Flee"
  22.   set the movierate of sprite 48 = 0
  23.   puppetsprite 48, false
  24.   updatestage
  25.   set the sound of cast theMovieName to 0
  26.   
  27.   if snap1 = 0 and snap2 = 0 then
  28.     updatestage
  29.     puppetsound 0
  30.     go frame gTheDay & "NoShots"
  31.     exit
  32.   else
  33.     updatestage
  34.     puppetsound 0
  35.     go frame "Darkroom"
  36.     exit
  37.   end if
  38. end
  39.